home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 8 / Power CD-ROM 8.iso / prgmming / skelet / skeleton.rcv < prev    next >
Text File  |  1994-08-15  |  4KB  |  93 lines

  1.  
  2. //---------------------------------------------------------------------------
  3. // skeleton.rcv (modified from vbx.rcv supplied with VB)
  4. //
  5. // Copyright (c) <Your Company Name> 1994
  6. //
  7. // Portions of this product are based on original
  8. // source code from Anton Software Limited.
  9. //
  10. //---------------------------------------------------------------------------
  11. // This RC fragment defines version information.  It should be #include'd
  12. // into the component's main .RC file.
  13. //---------------------------------------------------------------------------
  14.  
  15. #ifdef APSTUDIO_INVOKED
  16.     #error This file is not editable by AppStudio
  17. #endif
  18.  
  19. //---------------------------------------------------------------------------
  20. // Ver.h defines constants needed by the VS_VERSION_INFO structure.
  21. //---------------------------------------------------------------------------
  22. #include <ver.h>
  23.  
  24. //---------------------------------------------------------------------------
  25. // The following section defines values used in the version data structure
  26. // for all files, and which do not change.
  27. //---------------------------------------------------------------------------
  28. // Default is privatebuild, #define VER_OFFICALBUILD to get an official build.
  29. #ifndef VER_OFFICALBUILD
  30. #define VER_OFFICALBUILD            | VS_FF_PRIVATEBUILD
  31. #endif
  32.  
  33. // Default is prerelease, #define VER_RELEASE to get a release build.
  34. #ifndef VER_RELEASE
  35. #define VER_RELEASE                 | VS_FF_PRERELEASE
  36. #endif
  37.  
  38. #ifdef RC_INVOKED
  39. //---------------------------------------------------------------------------
  40. // Now, actually define the resource.
  41. //---------------------------------------------------------------------------
  42. VS_VERSION_INFO                     VERSIONINFO
  43. FILEVERSION                         VBX_VERSION
  44. PRODUCTVERSION                      VBX_VERSION
  45. FILEFLAGSMASK                       VS_FFI_FILEFLAGSMASK
  46. FILEFLAGS                           (0 VER_OFFICALBUILD VER_RELEASE)
  47. FILEOS                              VOS__WINDOWS16
  48. FILETYPE                            VFT_DLL
  49. FILESUBTYPE                         VFT2_UNKNOWN
  50. BEGIN
  51.     BLOCK "VarFileInfo"
  52.     BEGIN
  53.         VALUE "Translation"
  54.             0x0809,0
  55.     END
  56.     BLOCK "StringFileInfo"
  57.     BEGIN
  58.         BLOCK "040904E4"
  59.         BEGIN
  60.             VALUE "Acknowledgement", VBX_ACKNOWLEDGEMENT
  61.             VALUE "CompanyName",     VBX_COMPANYNAME
  62.             VALUE "FileDescription", VBX_FILEDESCRIPTION
  63.             VALUE "FileVersion",     VBX_VERSION_STR
  64.             VALUE "InternalName",    VBX_INTERNALNAME
  65.             VALUE "LegalCopyright",  VBX_LEGALCOPYRIGHT
  66.             VALUE "LegalTrademarks", VBX_LEGALTRADEMARKS
  67.             VALUE "OriginalFilename",VBX_ORIGINALFILENAME
  68.             VALUE "Comments",        VBX_COMMENTS
  69.             VALUE "ProductName",     VBX_PRODUCTNAME
  70.             VALUE "ProductVersion",  VBX_VERSION_STR
  71.         END
  72.     END
  73.  
  74.     BLOCK "VarFileInfo"
  75.     BEGIN
  76.         //-------------------------------------------------------------------
  77.         // The following line should only be modified for localized versions.
  78.         // It consists of any number of WORD,WORD pairs, with each pair
  79.         // describing a language,codepage combination supported by the file.
  80.         //
  81.         // For example, a file might have values "0x409,1252" indicating that
  82.         // it supports English language (0x409) in the Windows ANSI codepage
  83.         // (1252).
  84.         //-------------------------------------------------------------------
  85.         VALUE "Translation", 0x409, 1252
  86.     END
  87. END
  88.  
  89. #endif  // RC_INVOKED
  90.  
  91. //---------------------------------------------------------------------------
  92.  
  93.